Basic Library for WPF and Silverlight | ComponentOne
C1.WPF Namespace / CustomConverter Class / Create Method / Create(Func<Object,Type,Object,CultureInfo,Object>) Method
The converter function. (value, type, parameter, culture)
Example

In This Topic
    Create(Func<Object,Type,Object,CultureInfo,Object>) Method
    In This Topic
    Creates the specified converter function.
    Syntax

    Parameters

    converterFunction
    The converter function. (value, type, parameter, culture)

    Return Value

    The converted value
    Example
    var converter = CustomConverter.Create((value, type, parameter, culture)=>
    {
        return; //Put the converter code here
    });
    See Also